home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / icecast_rbof.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  79 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  based on work from
  4. #  (C) Tenable Network Security
  5. #
  6. #  Ref: Andreas Hasenack <andreas@conectiva.com.br> and Matt Messier <mmessier@prilnari.com>
  7. #
  8. #  This script is released under the GNU GPL v2
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(15399);
  14.  script_bugtraq_id(4743);
  15.  script_cve_id("CAN-2001-1230");
  16.  script_version ("$Revision: 1.1 $");
  17.  
  18.  name["english"] = "ICECast remote buffer overflow";
  19.  script_name(english:name["english"]);
  20.  
  21.  desc["english"] = "
  22. The remote server runs a version of ICECast, an open source 
  23. streaming audio server, which is older than version 1.3.10.
  24.  
  25. This version is affected by a remote buffer overflow.
  26.  
  27. As a result of this vulnerability, it is possible for a remote attacker
  28. to execute arbitrary code with the privilege of the server.
  29.  
  30. Solution : Upgrade to a newer version.
  31. Risk factor : High";
  32.  
  33.  
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Check icecast version";
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak",
  44.         francais:"Ce script est Copyright (C) 2004 David Maciejak");
  45.         
  46.  family["english"] = "Misc.";
  47.  script_family(english:family["english"]);
  48.  script_dependencie("http_version.nasl");
  49.  script_require_ports("Services/www", 8000);
  50.  exit(0);
  51. }
  52.  
  53. #
  54. # The script code starts here
  55. #
  56.  
  57. include("http_func.inc");
  58.  
  59. port = get_kb_item("Services/www");
  60. if(!port) port = 8000;
  61.  
  62. if(get_port_state(port))
  63. {
  64. soc = open_sock_tcp(port);
  65. if(soc)
  66. {
  67.   req = http_head(item:"/", port:port);
  68.   send(socket:soc,data:req);
  69.   r = http_recv(socket:soc);
  70.   close(soc);
  71.   str = strstr(r, "icecast");
  72.   if(str)
  73.   {
  74.     if(ereg(pattern:"icecast/1\.(1\.|3\.[0-9][^0-9])", string:str))
  75.       security_hole(port);
  76.   }
  77.  }
  78. }
  79.